home *** CD-ROM | disk | FTP | other *** search
- On 07-Oct-97, Cori Skagen scribbled:
- >Hi everyone,
-
- Hello :)
-
- >I was wondering if there's a way of finding the particular device
- >that a volume belongs to:
- >eg. Given "Workbench:" I want to find its particular device such as
- > "dh0:"
- >Its easy enough to find the volume name given the device by using
- >the AMCAF extension, but I need to do it the other way around.
- >Any help would be appreciated
-
- Well, this does the opposite, but I'm sure you could fiddle about with
- it and get the results and best of all, no extensions as suggested...
-
- Cut and save as AMOSFILE.asc and load into Amos using the Merge Ascii
- option from the Project menu...
-
-
- '
- ' *****************************
- ' Get Volume Name From Device
- ' Without Any Extensions
- ' bY Andy Gibson - AGAS.
- ' Written during 1996
- ' *****************************
- '
- '
- ' If you have a disk in any drive and you want to kno what its name
- ' is (ie. Volume name) simply use the following code...
- '
- ' You can use any device name such as DF0: DF1: HD0: DH0: etc.
- '
- ' Hope this helps someone....
- '
- ' It's good for all sorts of things. I think there are various
- ' extensions that can do this also, but I'm sure there is someone
- ' out there who asked for something like this a few days ago ;^)
- '
- PATH$="df1:" : Rem add a filename too if you want :)
- XAMOUNT=Instr(PATH$,":")
- SDISK$=Left$(PATH$,XAMOUNT)
- FILE$=PATH$-SDISK$
- Dir$=SDISK$ : OLD_DIR$=Dir$
- FINAL$=OLD_DIR$+FILE$
- Print FINAL$
- '
- ' The printed result will be the name of the disk in DF1: in this
- ' example. It may be crude, but has never let me down.
- '
- ' One example to use this for would be when an app lets the user
- ' enter some data to save. Most peeps would type....
- ' DF0:File, so now you can save to the correct disk for later
- ' accessing of their file from correct location. No more silly
- ' requestors asking for you to PLEASE INSERT DF0: IN ANY DRIVE!!!
- '
- ' Andy Gibson - AGAS Productions.
- '
- '
-
- --
- ___________________________________ ________________________________
- | _ _ | |
- | (-)/\//_)\/ AGAS Productions | #cONTACT mE fOR mORE iNFO# |
- | Gibson_/ 9T7 | #oN aREA51 rELEASES aLSO!# |
- | | |
- | andy@agasinc.demon.co.uk | cOMING sOON'ish |
- | | *Roswell Gfx Adv* |
- | -=<(aka SKiDZ/A51)>=- | 9T7 |
- |___________________________________|________________________________|
-
-
-